home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue45 / Construc / BOBNOTES.IDL < prev    next >
Text File  |  2000-11-02  |  353b  |  17 lines

  1. module BobNotes
  2. {
  3.   interface ICorBobNotes;
  4.  
  5.   
  6.   interface ICorBobNotes
  7.   {
  8.     void GetLines(in wstring User, in wstring Password, out wstring Lines);
  9.     void SetLines(in wstring User, in wstring Password, in wstring Lines);
  10.   };
  11.   
  12.   interface CorBobNotesFactory
  13.   {
  14.     ICorBobNotes CreateInstance(in string InstanceName);
  15.   };
  16.  
  17. };